home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / email / quopriMIME.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  9KB  |  274 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """Quoted-printable content transfer encoding per RFCs 2045-2047.
  5.  
  6. This module handles the content transfer encoding method defined in RFC 2045
  7. to encode US ASCII-like 8-bit data called `quoted-printable'.  It is used to
  8. safely encode text that is in a character set similar to the 7-bit US ASCII
  9. character set, but that includes some 8-bit characters that are normally not
  10. allowed in email bodies or headers.
  11.  
  12. Quoted-printable is very space-inefficient for encoding binary files; use the
  13. email.base64MIME module for that instead.
  14.  
  15. This module provides an interface to encode and decode both headers and bodies
  16. with quoted-printable encoding.
  17.  
  18. RFC 2045 defines a method for including character set information in an
  19. `encoded-word' in a header.  This method is commonly used for 8-bit real names
  20. in To:/From:/Cc: etc. fields, as well as Subject: lines.
  21.  
  22. This module does not do the line wrapping or end-of-line character
  23. conversion necessary for proper internationalized headers; it only
  24. does dumb encoding and decoding.  To deal with the various line
  25. wrapping issues, use the email.Header module.
  26. """
  27. import re
  28. from string import hexdigits
  29. from email.Utils import fix_eols
  30. CRLF = '\r\n'
  31. NL = '\n'
  32. MISC_LEN = 7
  33. hqre = re.compile('[^-a-zA-Z0-9!*+/ ]')
  34. bqre = re.compile('[^ !-<>-~\\t]')
  35.  
  36. def header_quopri_check(c):
  37.     '''Return True if the character should be escaped with header quopri.'''
  38.     return bool(hqre.match(c))
  39.  
  40.  
  41. def body_quopri_check(c):
  42.     '''Return True if the character should be escaped with body quopri.'''
  43.     return bool(bqre.match(c))
  44.  
  45.  
  46. def header_quopri_len(s):
  47.     '''Return the length of str when it is encoded with header quopri.'''
  48.     count = 0
  49.     for c in s:
  50.         if hqre.match(c):
  51.             count += 3
  52.             continue
  53.         count += 1
  54.     
  55.     return count
  56.  
  57.  
  58. def body_quopri_len(str):
  59.     '''Return the length of str when it is encoded with body quopri.'''
  60.     count = 0
  61.     for c in str:
  62.         if bqre.match(c):
  63.             count += 3
  64.             continue
  65.         count += 1
  66.     
  67.     return count
  68.  
  69.  
  70. def _max_append(L, s, maxlen, extra = ''):
  71.     if not L:
  72.         L.append(s.lstrip())
  73.     elif len(L[-1]) + len(s) <= maxlen:
  74.         L[-1] += extra + s
  75.     else:
  76.         L.append(s.lstrip())
  77.  
  78.  
  79. def unquote(s):
  80.     '''Turn a string in the form =AB to the ASCII character with value 0xab'''
  81.     return chr(int(s[1:3], 16))
  82.  
  83.  
  84. def quote(c):
  85.     return '=%02X' % ord(c)
  86.  
  87.  
  88. def header_encode(header, charset = 'iso-8859-1', keep_eols = False, maxlinelen = 76, eol = NL):
  89.     '''Encode a single header line with quoted-printable (like) encoding.
  90.  
  91.     Defined in RFC 2045, this `Q\' encoding is similar to quoted-printable, but
  92.     used specifically for email header fields to allow charsets with mostly 7
  93.     bit characters (and some 8 bit) to remain more or less readable in non-RFC
  94.     2045 aware mail clients.
  95.  
  96.     charset names the character set to use to encode the header.  It defaults
  97.     to iso-8859-1.
  98.  
  99.     The resulting string will be in the form:
  100.  
  101.     "=?charset?q?I_f=E2rt_in_your_g=E8n=E8ral_dire=E7tion?\\n
  102.       =?charset?q?Silly_=C8nglish_Kn=EEghts?="
  103.  
  104.     with each line wrapped safely at, at most, maxlinelen characters (defaults
  105.     to 76 characters).  If maxlinelen is None, the entire string is encoded in
  106.     one chunk with no splitting.
  107.  
  108.     End-of-line characters (\\r, \\n, \\r\\n) will be automatically converted
  109.     to the canonical email line separator \\r\\n unless the keep_eols
  110.     parameter is True (the default is False).
  111.  
  112.     Each line of the header will be terminated in the value of eol, which
  113.     defaults to "\\n".  Set this to "\\r\\n" if you are using the result of
  114.     this function directly in email.
  115.     '''
  116.     if not header:
  117.         return header
  118.     
  119.     if not keep_eols:
  120.         header = fix_eols(header)
  121.     
  122.     quoted = []
  123.     if maxlinelen is None:
  124.         max_encoded = 100000
  125.     else:
  126.         max_encoded = maxlinelen - len(charset) - MISC_LEN - 1
  127.     for c in header:
  128.         if c == ' ':
  129.             _max_append(quoted, '_', max_encoded)
  130.             continue
  131.         if not hqre.match(c):
  132.             _max_append(quoted, c, max_encoded)
  133.             continue
  134.         _max_append(quoted, '=%02X' % ord(c), max_encoded)
  135.     
  136.     joiner = eol + ' '
  137.     return []([ '=?%s?q?%s?=' % (charset, line) for line in quoted ])
  138.  
  139.  
  140. def encode(body, binary = False, maxlinelen = 76, eol = NL):
  141.     '''Encode with quoted-printable, wrapping at maxlinelen characters.
  142.  
  143.     If binary is False (the default), end-of-line characters will be converted
  144.     to the canonical email end-of-line sequence \\r\\n.  Otherwise they will
  145.     be left verbatim.
  146.  
  147.     Each line of encoded text will end with eol, which defaults to "\\n".  Set
  148.     this to "\\r\\n" if you will be using the result of this function directly
  149.     in an email.
  150.  
  151.     Each line will be wrapped at, at most, maxlinelen characters (defaults to
  152.     76 characters).  Long lines will have the `soft linefeed\' quoted-printable
  153.     character "=" appended to them, so the decoded text will be identical to
  154.     the original text.
  155.     '''
  156.     if not body:
  157.         return body
  158.     
  159.     if not binary:
  160.         body = fix_eols(body)
  161.     
  162.     encoded_body = ''
  163.     lineno = -1
  164.     lines = body.splitlines(1)
  165.     for line in lines:
  166.         if line.endswith(CRLF):
  167.             line = line[:-2]
  168.         elif line[-1] in CRLF:
  169.             line = line[:-1]
  170.         
  171.         lineno += 1
  172.         encoded_line = ''
  173.         prev = None
  174.         linelen = len(line)
  175.         for j in range(linelen):
  176.             c = line[j]
  177.             prev = c
  178.             if bqre.match(c):
  179.                 c = quote(c)
  180.             elif j + 1 == linelen:
  181.                 if c not in ' \t':
  182.                     encoded_line += c
  183.                 
  184.                 prev = c
  185.                 continue
  186.             
  187.             if len(encoded_line) + len(c) >= maxlinelen:
  188.                 encoded_body += encoded_line + '=' + eol
  189.                 encoded_line = ''
  190.             
  191.             encoded_line += c
  192.         
  193.         if prev and prev in ' \t':
  194.             if lineno + 1 == len(lines):
  195.                 prev = quote(prev)
  196.                 if len(encoded_line) + len(prev) > maxlinelen:
  197.                     encoded_body += encoded_line + '=' + eol + prev
  198.                 else:
  199.                     encoded_body += encoded_line + prev
  200.             else:
  201.                 encoded_body += encoded_line + prev + '=' + eol
  202.             encoded_line = ''
  203.         
  204.         if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
  205.             encoded_body += encoded_line + eol
  206.         else:
  207.             encoded_body += encoded_line
  208.         encoded_line = ''
  209.     
  210.     return encoded_body
  211.  
  212. body_encode = encode
  213. encodestring = encode
  214.  
  215. def decode(encoded, eol = NL):
  216.     '''Decode a quoted-printable string.
  217.  
  218.     Lines are separated with eol, which defaults to \\n.
  219.     '''
  220.     if not encoded:
  221.         return encoded
  222.     
  223.     decoded = ''
  224.     for line in encoded.splitlines():
  225.         line = line.rstrip()
  226.         if not line:
  227.             decoded += eol
  228.             continue
  229.         
  230.         i = 0
  231.         n = len(line)
  232.         while i < n:
  233.             c = line[i]
  234.             if c != '=':
  235.                 decoded += c
  236.                 i += 1
  237.             elif i + 1 == n:
  238.                 i += 1
  239.                 continue
  240.             elif i + 2 < n and line[i + 1] in hexdigits and line[i + 2] in hexdigits:
  241.                 decoded += unquote(line[i:i + 3])
  242.                 i += 3
  243.             else:
  244.                 decoded += c
  245.                 i += 1
  246.             if i == n:
  247.                 decoded += eol
  248.                 continue
  249.     
  250.     if not encoded.endswith(eol) and decoded.endswith(eol):
  251.         decoded = decoded[:-1]
  252.     
  253.     return decoded
  254.  
  255. body_decode = decode
  256. decodestring = decode
  257.  
  258. def _unquote_match(match):
  259.     '''Turn a match in the form =AB to the ASCII character with value 0xab'''
  260.     s = match.group(0)
  261.     return unquote(s)
  262.  
  263.  
  264. def header_decode(s):
  265.     """Decode a string encoded with RFC 2045 MIME header `Q' encoding.
  266.  
  267.     This function does not parse a full MIME header value encoded with
  268.     quoted-printable (like =?iso-8895-1?q?Hello_World?=) -- please use
  269.     the high level email.Header class for that functionality.
  270.     """
  271.     s = s.replace('_', ' ')
  272.     return re.sub('=\\w{2}', _unquote_match, s)
  273.  
  274.